Linux webm002.cluster126.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
/
home
/
ariannadhf
/
www
/
wp-content
/
themes
/
florence
/
inc
/
templates
/
/home/ariannadhf/www/wp-content/themes/florence/inc/templates/post-related.php
<?php $orig_post = $post; global $post; $categories = get_the_category($post->ID); if ($categories) { $category_ids = array(); foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id; $args = array( 'category__in' => $category_ids, 'post__not_in' => array($post->ID), 'posts_per_page' => 3, // Number of related posts that will be shown. 'ignore_sticky_posts' => 1, 'orderby' => 'rand' ); $my_query = new wp_query( $args ); if( $my_query->have_posts() ) { ?> <div class="post-related"><h4 class="block-heading"><?php esc_html_e('You Might Also Like', 'florence'); ?></h4> <?php while( $my_query->have_posts() ) { $my_query->the_post();?> <div class="item-related"> <?php if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) : ?> <a href="<?php the_permalink() ?>"><?php the_post_thumbnail('solopine-misc-thumb'); ?></a> <?php endif; ?> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <?php if(!get_theme_mod('solopine_post_related_date')) : ?><span class="date"><?php the_time( get_option('date_format') ); ?></span><?php endif; ?> </div> <?php } echo '</div>'; } } $post = $orig_post; wp_reset_query(); ?>